home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-06-24 | 403 b | 32 lines | [TEXT/MPCC] |
- // NetPoint.h
-
- #pragma once
-
- #include <OpenTransport.h>
- #include <OpenTptInternet.h>
-
-
- class NetPoint
-
- {
- protected:
- Boolean fCloseOnDestroy;
- EndpointRef fEndpoint;
- union {
- InetAddress inet;
- } fMyAddress;
- public:
- NetPoint();
- virtual ~NetPoint();
-
- virtual OSErr Open(
- const char *protocol);
- virtual OSErr Bind(
- short port);
- virtual OSErr Close();
-
- };
-
- #define OUR_PORT 8799
-
-